home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / freebsd_linux.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  87 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12566);
  10.  script_bugtraq_id(10643);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0602");
  13.  name["english"] = "FreeBSD : SA-04:13.linux";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host is running a version of the FreeBSD kernel which 
  19. contains a programming error in the way it handles some Linux system calls, 
  20. which may be exploited by an attacker to gain super-user privileges on the
  21. remote host, or to crash it.
  22.  
  23. Solution : http://www.vuxml.org/freebsd/8ecaaca2-cc07-11d8-858d-000d610a3b12.html
  24. Risk factor : High";
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Check for the version of the FreeBSD kernel";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  35.  family["english"] = "FreeBSD Local Security Checks";
  36.  script_family(english:family["english"]);
  37.  
  38.  script_dependencies("ssh_get_info.nasl");
  39.  script_require_keys("Host/FreeBSD/pkg_info");
  40.  exit(0);
  41. }
  42.  
  43.  
  44.  
  45. include("freebsd_package.inc");
  46.  
  47.  
  48.  
  49. package = get_kb_item("Host/FreeBSD/release");
  50.  
  51. if ( egrep(pattern:"FreeBSD-4\.[0-8]([^0-9]|$)", string:package) )
  52. {
  53.  if ( pkg_cmp(pkg:package, reference:"FreeBSD-4.8_24") < 0 )
  54.  {
  55.   security_hole(port);
  56.   exit(0);
  57.  }
  58. }
  59.  
  60. if ( egrep(pattern:"FreeBSD-4\.9", string:package) )
  61. {
  62.  if ( pkg_cmp(pkg:package, reference:"FreeBSD-4.9_11") < 0 )
  63.  {
  64.   security_hole(port);
  65.   exit(0);
  66.  }
  67. }
  68.  
  69. if ( egrep(pattern:"FreeBSD-4\.10", string:package) )
  70. {
  71.  if ( pkg_cmp(pkg:package, reference:"FreeBSD-4.10_2") < 0 )
  72.  {
  73.   security_hole(port);
  74.   exit(0);
  75.  }
  76. }
  77.  
  78. if ( egrep(pattern:"FreeBSD-5\.[012]", string:package) )
  79. {
  80.  if ( pkg_cmp(pkg:package, reference:"FreeBSD-5.2.1_9") < 0 )
  81.  {
  82.   security_hole(port);
  83.   exit(0);
  84.  }
  85. }
  86.  
  87.